home *** CD-ROM | disk | FTP | other *** search
/ Erotic Games: Memory / Erotic Games: Memory.iso / mac / air_installers / AdobeAIR.exe / setup.swf / scripts / mx / events / CollectionEventKind.as < prev    next >
Text File  |  2009-02-12  |  805b  |  35 lines

  1. package mx.events
  2. {
  3.    import mx.core.mx_internal;
  4.    
  5.    use namespace mx_internal;
  6.    
  7.    public final class CollectionEventKind
  8.    {
  9.       
  10.       public static const ADD:String = "add";
  11.       
  12.       public static const REMOVE:String = "remove";
  13.       
  14.       public static const UPDATE:String = "update";
  15.       
  16.       public static const MOVE:String = "move";
  17.       
  18.       mx_internal static const EXPAND:String = "expand";
  19.       
  20.       public static const REPLACE:String = "replace";
  21.       
  22.       mx_internal static const VERSION:String = "3.0.0.0";
  23.       
  24.       public static const REFRESH:String = "refresh";
  25.       
  26.       public static const RESET:String = "reset";
  27.        
  28.       
  29.       public function CollectionEventKind()
  30.       {
  31.          super();
  32.       }
  33.    }
  34. }
  35.